home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d17 / pr.arc / TOD.C < prev   
C/C++ Source or Header  |  1987-02-25  |  390b  |  33 lines

  1. #include <time.h>
  2.  
  3. char timestr[] = "Xyz 00 00:00 0000";
  4.  
  5. char *months[12] = {
  6.     "Jan",
  7.     "Feb",
  8.     "Mar",
  9.     "Apr",
  10.     "May",
  11.     "Jun",
  12.     "Jul",
  13.     "Aug",
  14.     "Sep",
  15.     "Oct",
  16.     "Nov",
  17.     "Dec"
  18. };
  19.  
  20. char *tod()
  21. {
  22.     TIME ct;
  23.     DATE cd;
  24.  
  25.     date(&cd);
  26.     time(&ct);
  27.  
  28.     sprintf(timestr,"%s %02d %02d:%02d %04d",
  29.        months[cd.month-1],cd.day,ct.hours,ct.mins,cd.year);
  30.     return timestr;
  31. }
  32.  
  33.